import { Doc, DocHandle } from "@automerge/automerge-repo"; import { type MaybeAccessor } from "@solid-primitives/utils"; /** * get a fine-grained live view of a handle's document. it's subscribed to the handle's changes, and converts incoming automerge operations to solid store updates, providing **fine-grained reactivity that's consistent across space and time**. * @param maybeHandle a handle, or a function that returns a handle, or a function * that might return a handle one day */ export declare function createDocumentProjection(maybeHandle: MaybeAccessor | undefined>): Doc; //# sourceMappingURL=create-document-projection%20copy.d.ts.map